home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / util / gnu / bison_1_22.lha / bison-1.22 / getargs.ch < prev    next >
Text File  |  1995-01-20  |  502b  |  39 lines

  1. Changes for GETARGS.C by Andreas Scherer, January 20, 1995.
  2.  
  3. @x l.21
  4. #include <stdio.h>
  5. #include "getopt.h"
  6. #include "system.h"
  7. #include "files.h"
  8. @y
  9. #include <stdio.h>
  10. #include <stdlib.h>
  11. #include "getopt.h"
  12. #include "system.h"
  13. #include "files.h"
  14. @z
  15.  
  16. @x l.37
  17. extern void fatal();
  18. @y
  19. extern void fatal(char *);
  20. @z
  21.  
  22. @x l.57
  23. usage (stream)
  24.      FILE *stream;
  25. @y
  26. usage (
  27.      FILE *stream)
  28. @z
  29.  
  30. @x l.70
  31. getargs(argc, argv)
  32.      int argc;
  33.      char *argv[];
  34. @y
  35. getargs(
  36.      int argc,
  37.      char *argv[])
  38. @z
  39.